home *** CD-ROM | disk | FTP | other *** search
/ VisualFX for ImageFX / VisualFX for Image FX 2.adf / Files / SetUp / 02 / 06.rexx < prev    next >
Encoding:
OS/2 REXX Batch file  |  1997-01-23  |  770 b   |  34 lines

  1. /*
  2.                                  Visual FX
  3.                                     For
  4.                                  Image FX
  5.                                SetUp Script
  6.                            Written By J.L. White
  7.  
  8.                          (C)1997 Merlin's Software
  9.  
  10. */
  11. parse arg Num
  12. options results
  13. address "IMAGEFX.1"
  14.  
  15.  
  16.     Gadget.1 = 'Select Direction Of Flip!'
  17.     Gadget.2 = 'ClockWise'
  18.     Gadget.3 = 'Counter ClockWise'
  19.     ListRequest 3 Gadget
  20.     Type = 0
  21.     if result = 2 then Type = 0
  22.     if result = 3 then Type = 1
  23.  
  24.     ActiveColor 0
  25.     RequestNotify "Click On Color To Use As BackGround Then Click OK"
  26.     ActiveColor
  27.     Color = result
  28.     ActiveColor 1
  29.  
  30. call open TempFile,"VFXIFX:TempDrawer/"strip(Num),W
  31. call writeln TempFile,Color
  32. call writeln TempFile,Type
  33. call close TempFile
  34.